/* root directories  */
:root{
    --font-family : Arial, Helvetica, sans-serif;
    --body-background-color : #0f172a;
    --body-color : #f1f5f9;
    --header-background-color: #0f172a;
    --white-color: #f1f5f9;
    /* --white-color: orange; */
    --black-color: #1e293b;
    --green-color: #38bdf8;
    /* --green-color: orange; */
    --para-color: #94a3b8;
    --large-font-size: 2.5rem;
    --medium-font-size : 1.5rem;
    --font-weight-bold : 700;
    --font-weight-semi-bold: 600;
    --font-weight-medium: 500;
    --font-weight-normal: 400;
    --medium-line-height: 1.5;
    --normal-line-height: 1;
    --font-size-normal: 1rem;
}

body, html {
  -webkit-user-select: none; 
  -moz-user-select: none;    
  -ms-user-select: none;     
  user-select: none;         
}

/* Prevent image dragging */
img {
  -webkit-user-drag: none; 
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  /* pointer-events: none;      */
  }

/* Universal Selector */
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* Body  */
body{
    font-family: var(--font-family);
    background-color: var(--body-background-color);
    color: var(--body-color);
}

/* whole html container  */
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* header  */
.container header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: var(--header-background-color);
    padding: 1.5rem 2.5rem;
    position: fixed;
    z-index: 10000;
}

/* header logo  */
header .logo a{
    text-decoration: none;
    color: var(--white-color);
    font-size: var(--medium-font-size);
    font-weight: var(--font-weight-semi-bold);
    margin: 0 0 0 1rem;
    line-height: var(--medium-line-height);
    cursor: pointer;
}

/* header navigation  */
header .navigation nav{
    display: flex;
    gap: 2rem;
}

header .navigation nav a{
    text-decoration: none;
    color: var(--white-color);
    font-size: var(--font-size-normal);
    line-height: var(--medium-line-height);
    margin: 0 1rem 0 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.navigation nav a:hover{
    color: var(--green-color);
}

/* menu icon  */
.menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.375rem;
    cursor: pointer;
    z-index: 999;
    display: none;
}

.menu span {
    display: block;
    height: 0.18rem;
    width: 1.4rem;
    background-color: var(--white-color);
    transition: all 0.3s ease;
    border-radius: 0.125rem;
    transition: transform 0.5s all ease;
}

.menu .middleMenu {
    width: 2rem;
}

.menu.active .upperMenu {
    transform: rotate(45deg) translate(6px, 6px);
    width: 2rem;
}

.menu.active .middleMenu {
    opacity: 0;
}

.menu.active .lowerMenu {
    transform: rotate(-45deg) translate(6px, -6px);
    width: 2rem;
}

/* home section  */
section.home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15rem;
    padding: 5.8rem 0;
    max-width: 1200px;
    margin: 4rem 0;
    min-height: 100vh;
}
/* Left Section */
.homeLeft{
    width: 55%;
}
.homeRight{
    width: 45%;
}
.homeLeft{
    padding-right: 8rem;
}
.homeLeft h2 {
    font-size: var(--large-font-size);
    color: var(--green-color);
    margin-bottom: 1.5rem;
    line-height: 1;
    font-weight: var(--font-weight-bold);
}
.homeLeft h1 {
    font-size: 3.75rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}
.h1SecondPart {
    color: var(--green-color);
    font-size: 3.75rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-bold);
}
.homeLeft p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--white-color);
    margin-bottom: 2.5rem;
}

/* Buttons */
.homeLeftButtons{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.homeLeftButtons a {
    display: flex;
    font-size: 0.875rem;
    font-weight: var(--font-weight-normal);
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.25rem;
    margin-right: 15px;
    padding: 0 2rem;
    height: 3rem;
    text-align: center;
    align-items: center;      
    justify-content: center; 
    border-radius: 25px;
    transition: all 0.3s ease;
}

.homeLeftButtons a:first-child {
    background-color: var(--green-color);
    color: #000;
}

.homeLeftButtons a:last-child {
    border: 2px solid #fff;
    color: #fff;
    background-color: transparent;
}

.homeLeftButtons a:hover {
    opacity: 0.7;
}

/* Social Icons */
.social-icons {
    margin-top: 1.875rem;
}
.social-icons a {
    font-size: 22px;
    color: #ffffff;
    margin-right: 20px;
    transition: color 0.3s ease;
}
.social-icons a.github:hover {
    color: rgba(177, 177, 177, 0.8);
}
.social-icons a.linkedin:hover {
    color: #0077b5; 
}
.social-icons a.whatsapp:hover {
    color: #25D366; 
}
.social-icons a.fiverr:hover{
    color: #1dbf73;
}

/* Right Section */
.homeRight {
    padding-left: 4rem;
    padding-right: 1.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.homeRight img:hover{
  box-shadow: 0 0 30px 5px var(--green-color);
}
.homeRight img{
    max-width: 100%;
    width: 100%;
    border-radius: 50%;
    height: auto;
    max-width: 550px;
    display: block;
    object-fit: cover;
    animation: float 4s ease-in-out infinite;
    transition: box-shadow 0.4s ease;

}


/* About Section */
.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

/* Left Image */
.aboutLeft {
    width: 50%;
}

.aboutLeft img {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: float ease-in-out 4s infinite;
}

/* Right Content */
.aboutRight {
    width: 50%;
    color: var(--white-color);
}

/* About Top */
.aboutRightTop h2 {
    font-size: 3.75rem;
    line-height: 1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}

.aboutRightTop p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--para-color);
    margin-bottom: 2rem;
    padding-top: 2rem;
}

/* About Center Info */
.aboutRightCenter {
    padding: 1.5rem 0;
    margin-bottom: 1rem;
}

.aboutRightCenter p {
    font-size: 0.95rem;
    margin: 0.5rem 0;
    font-weight: var(--medium-font-size);
    color: var(--white-color);
    display: flex;
    gap: 2rem;
    padding-bottom: 0.8rem;
    border-bottom: 0.5px solid rgba(229, 231, 235, 0.2);
}

.paraSecond {
    color: #ceced0;
}

/* Download Button */
.aboutRightBottom a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-radius: 1.56rem;
    background-color: var(--green-color);
    color: var(--black-color);
    text-decoration: none;
    font-weight: var(--font-size-normal);
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.aboutRightBottom a i {
    margin-right: 0.5rem;
    font-family: var(--font-weight-bold);
}

.aboutRightBottom a:hover {
    opacity: 0.8;
}


/* Services Section */
.services {
    padding: 3.5rem 0;
    color:var(--white-color);
    text-align: center;
}

.services h2 {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.services p {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 50px;
}

/* Service ParentCard */
.servicesParentCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: auto;
    padding: 2rem 5rem;
    border-radius: 0.5rem;
}

.serviceCard {
    background-color: rgba(17, 17, 17, 1);
    padding: 2.5rem 1.125rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.upperCard:hover {
    background-color: #1c1c1c;
    transform: translateY(-20px);
    box-shadow: 0 0 15px rgba(100, 221, 149, 0.1);
}
.lowerCard:hover{
    background-color: #1c1c1c;
    transform: translateY(20px);
    box-shadow: 0 0 15px rgba(100, 221, 149, 0.1);  
}

.serviceIcon {
    font-size: 3rem;
    color: var(--green-color);
    margin-bottom: 1.5rem;
}
.serviceCard:hover .serviceIcon{
    font-size: 3.3rem;
}

.serviceCard h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semi-bold);
    line-height: 1.75;
    color: white;
    margin-bottom: 0.5rem;
}

.bottomBorder {
    background-color: var(--green-color);
    height: 0.25rem;
    width: 3rem;
    margin: 0 auto;
    border-radius: 5px;
}

/* skills section */
.skills {
    padding: 4rem 2rem;
}

.skillsHeading {
    text-align: center;
    margin-bottom: 4rem;
}

.skillsHeading h2 {
    font-size: 3.75rem;
    line-height: var(--normal-line-height);
    font-weight: var(--font-weight-bold);
    color: var(--white-color);
    margin-bottom: 1.5rem;
}

.skillsHeading p {
    font-size: 1rem;
    color: var(--para-color);
}

/* all skill bars */
.allSkillBars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem 3rem;
    width: 90vw;
    margin: 0 auto;
}

.skillsBars {
    margin-bottom: 1.5rem;
}

.skillsBarsHeading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: var(--font-weight-normal);
    margin-bottom: 0.5rem;
}
.skillsBarsBody {
    background-color: rgba(51, 51, 51, 1);
    height: 0.5rem;
    border-radius: 5px;
    overflow: hidden;
}

.skillsBarFilled {
    height: 100%;
    width: 0;
    background-color: var(--green-color);
    border-radius: 5px;
    transition: width 3s ease-in-out;
}

.skillsBars[data-percent] .skillsBarFilled.fill {
  width: var(--fill-width);
}

/* Projects Section */
.projects {
    padding: 4rem 2rem;
    text-align: center;
}

.projects h2 {
    font-size: 3.75rem;
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    color: var(--white-color);
}

.projects p {
    margin: 0 auto 4rem auto;
    font-size: var(--font-size-normal);
    color: var(--para-color);
    line-height: var(--medium-line-height);
}

/* Parent Project Card */
.parentProjectCard {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 90vw;
    margin: 0 auto;
}

/* Individual Card */
.projectCard {
    /* background-color: rgba(17 17 17 0.7); */
    background-color: #111;
    padding: 1.5rem;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    box-shadow: 0 0 10px rgba(100, 221, 149, 0.05);
}

.projectCard:hover {
    transform: translateY(-5px);
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(100, 221, 149, 0.1);
}

/* Card Heading */
.projectCardHeading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--green-color);
    margin-bottom: 1rem;
}

.projectCardHeading .firstIcon {
    font-size: 1.5rem;
    color: var(--green-color);
}

.projectCardHeading h3 {
    flex-grow: 1;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0 0.75rem;
    color: var(--white-color);
    font-weight: var(--font-weight-semi-bold);
}

.projectCardHeading .lastIcon {
    background-color: #222;
    border-radius: 50%;
    padding: 0.4rem;
    color: var(--green-color);
    font-size: 1rem;
    font-weight: var(--font-weight-bold);
    transition: background-color 0.3s ease;
}

.projectCardHeading .lastIcon:hover {
    background-color: var(--green-color);
    color: var(--black-color);
}

.projectCard p {
    font-size: 1rem;
    color: var(--para-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags span {
    font-size: 0.75rem;
    background-color: rgba(0, 0, 0, 0.5);
    line-height: 1.25rem;
    color: var(--green-color);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}

.projectCard.hidden {
    display: none;
}

.viewMoreButton {
    text-align: center;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border: none;
    border-radius: 999px;
    background-color: var(--green-color);
    color: var(--black-color);
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.viewMoreButton:hover {
    opacity: 0.7;
    transform: scale(1.05);
}


/* Contact Section */
.contact {
    padding: 4rem 2rem;
    text-align: center;
}

.contactHeading h2 {
    font-size: 3.75rem;
    line-height: 1;
    color: var(--white-color);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
}

.contactHeading p {
    font-size: 1rem;
    color: var(--para-color);
    margin-bottom: 4rem;
}

.contactBody {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 90vw;
    margin: 0 auto;
}

.contactItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.iconCircle {
    width: 4rem;
    height: 4rem;
    background-color: rgba(17 17 17 1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
}
.iconCircle:hover{
    background-color: #ffd700;
}
.iconCircle:hover i{
    color: var(--black-color);
}

.iconCircle i {
    color: var(--green-color);
    width: 1.5rem;
    height: 1.5rem;
    vertical-align: middle;
    position: absolute;
    font-size: 1.75rem;
    left: 1.1562rem;
    bottom: 1.375rem;
}
.contactItem h4 {
    font-weight: var(--font-weight-semi-bold);
    color: var(--white-color);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    line-height: 1.25rem;
}
.contactItem p {
    color: var(--para-color);
    font-size: 1rem;
}

.contactItem p a {
    text-decoration: none;
    color: var(--para-color);
    animation: color 0.3s ease;
}
.contactItem p a:hover {
    color: #4ade80; 
}

/* footer  */
.footer {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem 4rem;
  font-size: 1rem;
  border-top: 1px solid #333;
}

.footer p{
  margin: 0;
  color: var(--para-color);
}


/* for animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px); 
  transition: all 0.6s ease-out;
}
.pop-down {
  transform: translateY(-30px);
}
.slide-in-left {
  transform: translateX(-100px);
}

.slide-in-right {
  transform: translateX(100px);
}
.pop-out{
  transform: scale(0.9);
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}


@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}


/* Now responsiveness  */

/* for screen less than 575px */
@media only screen and (max-width: 575px) {

    body {
        font-size: 90%;
    }

    .container header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.25rem;
    }

    /* Menu Icon */
    .menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 0.375rem;
        cursor: pointer;
        z-index: 10001;
    }

    .menu span {
        display: block;
        height: 0.18rem;
        width: 1.125rem;
        background-color: var(--white-color);
        transition: all 0.3s ease;
        border-radius: 0.125rem;
    }

    .menu .middleMenu {
        width: 1.56rem;
    }

    .menu.active .upperMenu {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu.active .middleMenu {
        opacity: 0;
    }

    .menu.active .lowerMenu {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Responsive navigation */
    .navigation {
        position: fixed;
        top: 0;
        left: 25%;
        height: 70vh;
        width: 50vw;
        margin: 0 auto;
        background-color: rgba(0, 0, 0, 0.95);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 10000;
    }

    .navigation.showMenu {
        transform: translateY(0);
    }

    .navigation nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .navigation nav a {
        font-size: 1.5rem;
        color: var(--white-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .navigation nav a:hover {
        color: var(--green-color);
    }

    /* Home Section */
    .home {
        flex-direction: column;
        padding: 4rem 1rem;
        margin-top: 4rem;
        text-align: center;
    }

    .homeLeft,
    .homeRight {
        width: 100%;
        padding: 0;
    }

    .homeLeft h1,
    .homeLeft h2,
    .h1SecondPart {
        font-size: 2.25rem;
    }

    .homeLeft p {
        font-size: 1rem;
        line-height: 1.6rem;
    }

    .homeLeftButtons {
        flex-direction: column;
        gap: 1rem;
    }

    .homeLeftButtons a {
        width: 100%;
        max-width: 250px;
    }

    .homeRight img {
        margin-top: 5rem;
        max-width: 100%;
        width: 90%;
    }

    .social-icons {
        justify-content: center;
    }

    /* About Section */
    .about {
        flex-direction: column;
        padding: 0 1rem;
    }

    .aboutLeft,
    .aboutRight {
        width: 100%;
        /* text-align: justify; */
    }

    .aboutRightTop h2 {
        font-size: 2.25rem;
        text-align: center;
    }

    .aboutRightCenter {
        text-align: left;
        margin: 0 auto;
    }
    .aboutRightBottom{
        text-align: center;
    }

    /* Services Section */
    .servicesParentCard {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    /* Skills Section */
    .allSkillBars {
        grid-template-columns: 1fr;
    }

    /* Projects Section */
    .parentProjectCard {
        grid-template-columns: 1fr;
    }

    /* Contact Section */
    .contactBody {
        grid-template-columns: 1fr;
    }

    .contactItem {
        margin-bottom: 2rem;
    }

    .footer {
        padding: 1.5rem 1rem;
        font-size: 0.875rem;
}

}


/* for media screen larger than 575px and samller than 767px */
@media only screen and (min-width: 575px) and (max-width: 767px) {
  /* Header */
  .container header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }

  /* Menu Icon */
  .menu {
    display: flex;
  }

  /* Responsive Navigation Menu */
  .navigation {
    position: fixed;
    top: 0;
    left: 25%;
    height: 70vh;
    width: 50vw;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
  }

  .navigation.showMenu {
    transform: translateY(0);
  }

  .navigation nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* Home Section */
  section.home {
    flex-direction: column;
    padding: 4rem 1rem;
    margin-top: 4rem;
    text-align: center;
  }

  .homeLeft,
  .homeRight {
    width: 100%;
    padding: 0;
  }

  .homeLeft h1,
  .homeLeft h2,
  .h1SecondPart {
    font-size: 2.5rem;
  }

  .homeLeft p {
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  .homeLeftButtons {
    flex-direction: column;
    gap: 1rem;
  }

  .homeLeftButtons a {
    width: 100%;
    max-width: 300px;
  }

  .homeRight img {
    margin-top: 4rem;
    width: 90%;
  }

  /* About Section */
  .about {
    flex-direction: column;
    padding: 0 1rem;
  }

  .aboutLeft,
  .aboutRight {
    width: 100%;
    text-align: center;
  }

  .aboutRightTop h2 {
    font-size: 2.5rem;
  }

  .aboutRightCenter {
    text-align: left;
    margin: 0 auto;
  }

  .aboutRightBottom {
    text-align: center;
  }

  /* Services Section */
  .servicesParentCard {
    grid-template-columns: 1fr 1fr;
    padding: 1rem;
  }

  /* Skills Section */
  .allSkillBars {
    grid-template-columns: 1fr;
  }

  /* Projects Section */
  .parentProjectCard {
    grid-template-columns: 1fr 1fr;
  }

  /* Contact Section */
  .contactBody {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contactItem {
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 1rem;
    font-size: 0.875rem;
  }
}

/* for media screen larger than 768px  and smaller than 992px  */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  /* Header */
  .container header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  }

  .menu {
    display: flex;
  }

  .navigation {
    position: fixed;
    top: 0;
    left: 25%;
    height: 70vh;
    width: 50vw;
    background-color: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 10000;
  }

  .navigation.showMenu {
    transform: translateY(0);
  }

  .navigation nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  /* Home Section */
  section.home {
    flex-direction: column;
    padding: 5rem 2rem;
    margin-top: 4rem;
    text-align: center;
  }

  .homeLeft,
  .homeRight {
    width: 100%;
    padding: 0;
  }

  .homeLeft h1,
  .homeLeft h2,
  .h1SecondPart {
    font-size: 3rem;
  }

  .homeLeft p {
    font-size: 1.2rem;
    line-height: 1.75rem;
  }

  .homeLeftButtons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .homeLeftButtons a {
    padding: 0.75rem 2rem;
    max-width: 280px;
  }

  .homeRight img {
    margin-top: 3rem;
    width: 85%;
  }

  /* About Section */
  .about {
    flex-direction: column;
    padding: 0 2rem;
  }

  .aboutLeft,
  .aboutRight {
    width: 100%;
    text-align: center;
  }

  .aboutRightTop h2 {
    font-size: 3rem;
  }

  .aboutRightCenter {
    text-align: center;
  }

  .aboutRightBottom {
    text-align: center;
  }

  /* Services Section */
  .servicesParentCard {
    grid-template-columns: 1fr 1fr;
    padding: 2rem;
    width: 95vw;
    margin: 0 auto;
    gap: 2rem;
  }

  /* Skills Section */
  .allSkillBars {
    grid-template-columns: 1fr 1fr;
    width: 95vw;
    margin: 0 auto;
    width: 95%;
  }

  /* Projects Section */
  .parentProjectCard {
    grid-template-columns: 1fr 1fr;
    width: 95vw;
  }

  /* Contact Section */
  .contactBody {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contactItem {
    margin-bottom: 2rem;
  }

  /* Footer */
  .footer {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}

/* Now for devices larger 992px than and smaller than 1199px */
@media only screen and (min-width: 993px) and (max-width: 1199px) {

  /* Header */
  .container header {
    padding: 1.5rem 2rem;
  }

  /* Home Section */
  section.home {
    flex-direction: row;
    padding: 6rem 2rem;
    margin-top: 4rem;
  }

  .homeLeft,
  .homeRight {
    width: 50%;
  }

  .homeLeft {
    padding-right: 4rem;
  }

  .homeLeft h1,
  .h1SecondPart {
    font-size: 3.25rem;
  }

  .homeLeft h2 {
    font-size: 2rem;
  }

  .homeLeft p {
    font-size: 1.125rem;
    line-height: 1.7rem;
  }

  .homeRight img {
    max-width: 100%;
    width: 100%;
    padding-left: 2rem;
  }

  /* About Section */
  .about {
    gap: 2rem;
    padding: 0 2rem;
  }

  .aboutLeft img {
    max-width: 100%;
  }

  .aboutRightTop h2 {
    font-size: 3rem;
  }

  .aboutRightTop p {
    font-size: 1rem;
  }

  .aboutRightCenter p {
    font-size: 0.95rem;
  }

  /* Services */
  .servicesParentCard {
    grid-template-columns: repeat(2, 1fr);
    width: 95vw;
    padding: 2rem;
    gap: 1.5rem;
  }

  /* Skills */
  .allSkillBars {
    grid-template-columns: 1fr 1fr;
    width: 95vw;
  }

  /* Projects */
  .parentProjectCard {
    grid-template-columns: repeat(2, 1fr);
  }
}